home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / SHMIDT.ZIP / VW32SVC.INC < prev    next >
Text File  |  1996-11-14  |  460b  |  18 lines

  1. ifndef  _VW32SVC_INC_
  2. _VW32HOOK_INC_  equ 1
  3.  
  4. ; Win32 service hook functions
  5. extrn   _Get_Win32_Param_Count:near
  6. extrn   _Hook_Win32_Service:near
  7. extrn   _Unhook_Win32_Service:near
  8. extrn   _Enumerate_Win32_Services:near
  9.  
  10. ; macro to declare Win32 service handler 
  11. ; in the same file as the service source
  12. Local_Win32_Service MACRO vxd, procname, paramcnt
  13.     ?merge  <cparm>,<procname>,<=>,<paramcnt>
  14.     vxd&_Win32_Service procname
  15. endm
  16.  
  17. endif
  18.